home *** CD-ROM | disk | FTP | other *** search
- unit LZW4P;
-
- interface
-
- function InitLZW(AllocP : Pointer) : Integer; (* Initializes LZW4P *)
- function TermLZW(FreeP : Pointer) : Integer; (* Terminates LZW4P *)
- function Compress(ReaderP, WriterP : Pointer) : Integer; (* Compresses *)
- function Expand(ReaderP, WriterP : Pointer) : Integer; (* Expands *)
-
- implementation
-
- {$L LZW4PLIB}
-
- function InitLZW; external;
- function TermLZW; external;
- function Compress; external;
- function Expand; external;
-
- end.